home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 011 / coppy.arc / COPPY.DOC next >
Text File  |  1987-08-31  |  4KB  |  85 lines

  1. TITLE:         COPPY
  2. PURPOSE:       Copy files by best fit from HD to floppies
  3. DATE:          8/31/87
  4. AUTHOR:        Thomas A. Lundin
  5.                Graphics Unlimited Inc.
  6.                3000 2nd St. N.
  7.                Minneapolis, MN 55411
  8.                (612) 588-7571
  9.  
  10. DESCRIPTION:   COPPY fits as many files in a hard disk directory as it can 
  11.                onto floppy diskettes (any capacity).  The files are copied by 
  12.                file size, using the largest file that will fit in the 
  13.                remaining available floppy disk space.  The program operates 
  14.                from a directory list file -- that is, a file that is composed 
  15.                of a redirected DIR command (e.g., DIR *.DOC >DIRLIST).
  16.  
  17. OPERATION:     The command line invocation is:
  18.  
  19.                coppy  @dirlist  drv ─┘
  20.  
  21.                1.   "dirlist" is the name of a directory list file, i.e., a 
  22.                     file that has been created from a redirected DIR command.  
  23.                     For example, the DOS command
  24.  
  25.                     dir *.txt >dirfile  ─┘
  26.  
  27.                     will create a disk file named "dirfile" which contains a 
  28.                     directory of all files with a ".TXT" extension.
  29.  
  30.                2.   "drv" is the letter of the disk drive onto which you 
  31.                     wish to copy the files. The drive may consist of a 
  32.                     letter only, or a letter and a colon.
  33.  
  34.                You will be prompted to change diskettes when the current one 
  35.                is incapable of holding any more files from the DIRLIST.
  36.  
  37.                CTRL-C will cancel the program at any time, even in the 
  38.                middle of a copy operation.
  39.  
  40. NOTES:         Files that are too large to fit onto a single floppy are listed 
  41.                after all other files have been copied off to diskettes.  If 
  42.                the floppy diskette already contains some files, they will be 
  43.                left alone.  File names which exist on both the hard disk and 
  44.                floppy will not be copied.  The sizes of the files as portrayed 
  45.                in the DIRLIST bear no significance to the copy function; the 
  46.                file sizes are explicitly determined at copy time.  A maximum 
  47.                of 1200 files may be copied in a single move.
  48.  
  49.                The program was written in Turbo C.
  50.  
  51. MACHINE:       The program will run on any MS-DOS compatible computer using 
  52.                MS-DOS 2.x or higher, with a minimum of 128K RAM.
  53.  
  54. DISCLAIMER:    This program is distributed as user-supported software.  Use 
  55.                it, copy it, give it to your friends.  No warranties, either 
  56.                expressed or implied, are given by the author or distributor of 
  57.                the program, and the user accepts all risk of damage arising 
  58.                out of the application and use of the program.
  59.  
  60. BEG:           If you find this program to be of value, contributions in any 
  61.                amount ($5 suggested) will be gratefully accepted.  All 
  62.                contributors who donate $10 or more will be mailed an expanded 
  63.                version of COPPY which supports copying by wildcards and 
  64.                automatic splitting of large files across multiple diskettes.
  65.  
  66.                Send comments/bug reports/contributions to:
  67.  
  68.                          ╔══════════════════════════╗
  69.                          ║     Thomas A. Lundin     ║
  70.                          ║ Graphics Unlimited, Inc. ║
  71.                          ║ 3000 Second Street North ║
  72.                          ║  Minneapolis, MN  55411  ║
  73.                          ║      (612) 588-7571      ║
  74.                          ╚══════════════════════════╝
  75.  
  76.                You can also reach me at my BBS home base:
  77.  
  78.                                 PC-ROCKLAND BBS
  79.                       If you can't find a program here,
  80.                           it probably doesn't exist!
  81.                                 (914) 353-2156
  82.                         (Leave msg. for "Tom Lundin")
  83.  
  84.                Thank you for using COPPY.
  85.